home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo This batch file will backup the database using an archive program
- echo then copy the compressed file to a floppy. You may edit this
- echo file if you wish to use a compression program other than PKZIP
- echo.
- echo Press CTRL-C to break now or
- pause
- echo Now Archiving %1 database ... please standby
- del %1.zip
- pkzip -es -a %1.zip %1.dt %1.hdr %1.nx? %1.not %1.nt0
- echo.
- echo Now place a formatted disk into drive A:
- pause
- copy %1.zip a:
- echo Backup completed!
-